home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Auge 4000 / Auge 4000 #02 (1987)(Amiga User Gruppe Einzugsgebiet 4000).zip / Auge 4000 #02 (1987)(Amiga User Gruppe Einzugsgebiet 4000).adf / devs / Mountlist < prev    next >
Text File  |  1987-03-20  |  5KB  |  140 lines

  1. /*
  2. **    Copyright 1987 By Perry S. Kivolowitz (ASDG Incorporated) All Rights
  3. **    Reserved to Author. NOT IN THE PUBLIC DOMAIN.
  4. **
  5. **    The contents of this file:
  6. **
  7. **    May not be distributed by any commercial software or hardware vendor.
  8. **    May not be sold under any guise.
  9. **    Must (please) contain this and copyright information above and below.
  10. **
  11. **    Specifically:
  12. **
  13. **    No maker or seller of Amiga  expansion  hardware or software may dis-
  14. **    tribute this  software in  *any* way. No  reseller  of  public domain
  15. **    software may distribute this software either (as this is *NOT* in the
  16. **    public domain).
  17. **
  18. **    The only acceptable means of  distribution is by networks, bbs's, fnf,
  19. **    and by (non-profit) user groups. Distribution MUST BE FREE (except for
  20. **    media costs plus a token amount covering only shipping and handling).
  21. **
  22. **    Your use,  storage  and or duplication  constitutes acceptance of this
  23. **    agreement.
  24. **
  25. **    ASDG Incorporated cannot be liable for  the use or misuse of this pro-
  26. **    duct. 
  27. **
  28. **    If you use this software and wish to  become a registered owner please
  29. **    send $10 to:
  30. **            ASDG Incorporated
  31. **            280 River Rd. Suite 54A
  32. **            Piscataway N.J.
  33. **            08854
  34. **            (201) 540 - 9670
  35. **
  36. **    Can't say there's much material benefit from being a registered owner
  37. **    but you will feel better knowing  that you helped defray the recover-
  38. **    able ram  disk's  development  costs.  Also, we will answer technical
  39. **    questions from registered users only and will  distribute new product
  40. **    news to same.
  41. */
  42.  
  43. /*
  44. **    Changing Any MountList Parameters Except As Noted Below Will Cause
  45. **    The Recoverable Ram Disk To Cease To Function.
  46. */
  47.  
  48. /*
  49. **    IF YOU HAVE SOME FAST RAM:
  50. **
  51. **        Make BufMemType equal to 5.
  52. **        Set HighCyl appropriately.
  53. **
  54. **    IF YOU HAVE ONLY CHIP RAM (NO RAM EXPANSION):
  55. **
  56. **        Make BufMemType equal to 3.
  57. **        Set HighCyl appropriately.
  58. **
  59. **    Increasing the value of Buffers will actually slow down the ram disk.
  60. **
  61. **    The BufMemType flag is actually  the second parameter of the AllocMem
  62. **    calls the kernel will make to  allocate  internal buffers. Making the
  63. **    value places the buffers in Fast ram. A value of 3 places the buffers
  64. **    in Chip ram.
  65. */
  66.  
  67. /*
  68. **    Setting HighCyl
  69. **
  70. **    HighCyl determines the maximum size of the recoverable ram disk. It
  71. **    defines the number of tracks there are in the disk. Each track con-
  72. **    tains 16 512 byte blocks (or 8K of information).  Changing  HighCyl
  73. **    and rebooting will cause a fresh (empty) recoverable ram disk to be
  74. **    created.
  75. **
  76. **    It is better to run out  of  space on the recoverable ram disk than
  77. **    to run out of memory. That  is,  don't  set  HighCyl to make a disk
  78. **    larger than your total amount of memory. 
  79. **
  80. **    Remember, the ASDG  Recoverable  Ram  Disk does full dynamic memory
  81. **    management. That is, HighCyl is really just a Maximum size. Setting
  82. **    HighCyl to a large number does *NOT* mean you automatically lose  a
  83. **    lot of memory.
  84. **
  85. **    HighCyl MUST BE ODD!
  86. **
  87. **    Suggested HighCyl Values:
  88. **
  89. **    Fast Ram Installed    HighCyl Value    Max Ram Disk Size
  90. **
  91. **        0             15              128K
  92. **        512K             31              256K
  93. **        1Mbyte             63-95            512K-768K
  94. **        2Mbytes             127-191          1Mbyte-1.5Mbytes
  95. **        4Mbytes             255-383**          2Mbytes-3Mbytes
  96. **        8Mbytes             Anything less**
  97. **                     than 1024
  98. **
  99. **    **This version of the ASDG Recoverable Ram Disk has been configured
  100. **    to support ram disks  up  to  2Mbytes in size. That is, the maximum
  101. **    valid value of HighCyl is 255. A  verison  supporting up to 8Mbytes
  102. **    of ram disk is available from ASDG Incorporated.
  103. **
  104. **    REMEMBER: If you have  Fast  Ram  that  autoconfigs, some amount of
  105. **    it will be used by the operating system even before the recoverable
  106. **    ram disk starts  up. So, you've  actually  got about 100K less than
  107. **    you think.
  108. **
  109. **    NOTE: Using Addbuffers with the ASDG Recoverable Ram Disk will 
  110. **    slow the ram disk's performance. 
  111. **
  112. */
  113.  
  114. /*
  115. **    Copyright 1987 By Perry S. Kivolowitz (ASDG Incorporated) All Rights
  116. **    Reserved to Author. NOT IN THE PUBLIC DOMAIN.
  117. **
  118. **    The contents of this file:
  119. **
  120. **    May not be distributed by any commercial software or hardware vendor.
  121. **    May not be sold under any guise.
  122. **    Must (please) contain this and copyright information above and below.
  123. **
  124. */
  125.  
  126. VD0:       Device = asdg.vdisk.device
  127.            Unit   = 1
  128.            Flags  = 0
  129.            Surfaces  = 1
  130.            BlocksPerTrack = 16
  131.            Priority = 5
  132.            Reserved = 2
  133.            Interleave = 0
  134.            LowCyl = 0
  135.            HighCyl = 63
  136.            Buffers = 5
  137.            BufMemType = 3
  138. #
  139.  
  140.